home *** CD-ROM | disk | FTP | other *** search
/ Zoom 2 / Zoom - Release 2 (1996)(Active Software)[!].iso / games / multiplayer / bomb / installbomb < prev    next >
Encoding:
Text File  |  1992-09-02  |  2.8 KB  |  149 lines

  1. ; $VER: Install BOMB V1.0 (27 April 1995)
  2. ; This script is to be distributed with  B O M B
  3. ; by Silicon Sircus
  4.  
  5. (
  6. (set #install-script-choice
  7. (cat "\nYou may want this script (not only to go over its\n"
  8.      "excellence again and again) if you're indecisive.\n\n"
  9.      "You see - you may want to move it from where you\n"
  10.      "are installing it now, in which case this script\n"
  11.      "would come in useful because it could move all the\n"
  12.      "files and set the assigns up for you.\n\n"
  13.      @askoptions-help
  14. )
  15. )
  16. )
  17.  
  18. (set @default-dest
  19. (askdir
  20.    (prompt "Please select or make the directory where you would\n"
  21.            " like to install the program and its data into")
  22.    (help @askdir-help)
  23.    (default "SYS:")
  24.    )
  25. )
  26.  
  27. (complete 0)
  28.  
  29. (
  30. (working "Installing  B O M B  run script")
  31. (copyfiles
  32.     (prompt "")
  33.     (help @copyfiles-help)
  34.     (source "BOMB")
  35.     (dest @default-dest)
  36.     (infos)
  37.     )
  38. )
  39.  
  40. (complete 1)
  41.  
  42. (
  43. (working "Installing  B O M B  program")
  44. (copyfiles
  45.     (prompt "")
  46.     (help @copyfiles-help)
  47.     (source "BOMBprogram")
  48.     (dest @default-dest)
  49.     (infos)
  50.     )
  51. )
  52.  
  53. (complete 10)
  54.  
  55. (
  56. (working "Installing  B O M B  power up picture")
  57. (copyfiles
  58.     (prompt "")
  59.     (help @copyfiles-help)
  60.     (source "PowerUps")
  61.     (dest @default-dest)
  62.     (infos)
  63.     )
  64. )
  65.  
  66. (complete 11)
  67.  
  68. (
  69. (if (exists "BOMB.guide" (noreq) )
  70.     (copyfiles
  71.         (prompt "Would you like to install the cool documentation for\n"
  72.                 "B O M B  which is an AmigaGuide?")
  73.         (help @copyfiles-help)
  74.         (source "BOMB.guide")
  75.         (dest @default-dest)
  76.         (confirm)
  77.         (infos)
  78.     )
  79. )
  80. )
  81.  
  82. (complete 15)
  83.  
  84. (
  85. (if (exists "InstallBOMB" (noreq) )
  86.     (copyfiles
  87.         (prompt "Would you like this install scipt?\n\n"
  88.                 "Ask for help for reasons why.")
  89.         (help #install-script-choice)
  90.         (source "InstallBOMB")
  91.         (dest @default-dest)
  92.         (confirm)
  93.         (infos)
  94.     )
  95. )
  96. )
  97.  
  98. (complete 16)
  99.  
  100. (
  101. (if (exists "LIBS/PowerPacker.library" (noreq) ) 
  102.     (copyfiles
  103.         (prompt "You need PowerPacker.library to run  B O M B\n"
  104.                 "Would you like me to install version 35.344 for you?")
  105.         (help @copyfiles-help)
  106.         (source "LIBS/PowerPacker.library")
  107.         (dest "LIBS:")
  108.         (confirm)
  109.     )
  110. )
  111. )
  112.  
  113.  
  114. (complete 17)
  115.  
  116. (
  117. (makedir((cat @default-dest "/BOMBdata" )))
  118. )
  119.  
  120. (
  121. (working "Installing  B O M B  game data")
  122. (copyfiles
  123.     (prompt "")
  124.     (help @copyfiles-help)
  125.     (source "BOMBdata/")
  126.     (dest (tackon @default-dest "BOMBdata/"))
  127.     (all)
  128.     )
  129. )
  130.  
  131. (complete 99)
  132.  
  133. (
  134. (startup @app-name
  135.     (prompt "I need to put some assigns in your S:User-Startup"
  136.         " so that  B O M B  knows where to look for its"
  137.         " data and its fonts when you double click on it.\n\n"
  138.         "Is that okay?\n\n"
  139.         "(P.S.  You must reset once the installation is"
  140.         " FINISHED to make sure this happens)")
  141.     (help @startup-help)
  142.     (command "Assign >NIL: BOMB: "@default-dest)
  143.     )
  144. )
  145.  
  146. (complete 100)
  147.  
  148. (exit)
  149.